home *** CD-ROM | disk | FTP | other *** search
- @echo off
- echo.
- echo Half-Shell 1.1 INSTALL
- If "%1"=="" goto error
- echo Installing Half-Shell and SwapShell...
- copy halfshel.exe %1 >nul
- copy halfcon.exe %1 >nul
- copy swapshel.exe %1 >nul
- if exist %1\halfshel.ini goto :nottheini
- copy halfshel.ini %1 >nul
- :nottheini
- echo Done!
- echo.
- goto done
- :error
- echo Usage: INSTALL <Windows-directory>
- echo Example: INSTALL c:\windows
- echo.
- :done
-